home *** CD-ROM | disk | FTP | other *** search
/ Halting the Hacker - A P…uide to Computer Security / Halting the Hacker - A Practical Guide to Computer Security.iso / rfc / rfc1743.txt < prev    next >
Text File  |  1997-04-01  |  43KB  |  1,404 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                      K. McCloghrie
  8. Request for Comments: 1743                                     E. Decker
  9. Obsoletes: 1231                                      cisco Systems, Inc.
  10. Category: Standards Track                                  December 1994
  11.  
  12.  
  13.                        IEEE 802.5 MIB using SMIv2
  14.  
  15. Status of this Memo
  16.  
  17.    This document specifies an Internet standards track protocol for the
  18.    Internet community, and requests discussion and suggestions for
  19.    improvements.  Please refer to the current edition of the "Internet
  20.    Official Protocol Standards" (STD 1) for the standardization state
  21.    and status of this protocol.  Distribution of this memo is unlimited.
  22.  
  23. Table of Contents
  24.  
  25.    1. Introduction .............................................    1
  26.    2. The SNMPv2 Network Management Framework ..................    2
  27.    2.1 Object Definitions ......................................    2
  28.    3. Overview .................................................    2
  29.    3.1 MAC Addresses ...........................................    3
  30.    3.2 Relationship to RFC 1213 ................................    3
  31.    3.3 Relationship to RFC 1573 ................................    3
  32.    3.3.1 Layering Model ........................................    3
  33.    3.3.2 Virtual Circuits ......................................    3
  34.    3.3.3 ifTestTable ...........................................    3
  35.    3.3.4 ifRcvAddressTable .....................................    4
  36.    3.3.5 ifPhysAddress .........................................    4
  37.    3.3.6 ifType ................................................    4
  38.    4. Definitions ..............................................    4
  39.    5. Acknowledgements .........................................   23
  40.    6. References ...............................................   23
  41.    Appendix A. Changes from RFC 1231 ...........................   24
  42.    Security Considerations .....................................   24
  43.    Authors' Addresses ..........................................   25
  44.  
  45. 1.  Introduction
  46.  
  47.    This memo defines a portion of the Management Information Base (MIB)
  48.    for use with network management protocols in the Internet community.
  49.    In particular, it describes managed objects used for managing
  50.    subnetworks which use the IEEE 802.5 Token Ring technology described
  51.    in 802.5 Token Ring Access Method and Physical Layer Specifications,
  52.    IEEE Standard 802.5-1989 [7].  This memo is a replacement for RFC
  53.    1231.
  54.  
  55.  
  56.  
  57.  
  58. McCloghrie & Decker                                             [Page 1]
  59.  
  60. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  61.  
  62.  
  63. 2.  The SNMPv2 Network Management Framework
  64.  
  65.    The SNMPv2 Network Management Framework consists of four major
  66.    components.  They are:
  67.  
  68.       o    RFC 1442 [1] which defines the SMI, the mechanisms used for
  69.            describing and naming objects for the purpose of management.
  70.  
  71.       o    STD 17, RFC 1213 [2] defines MIB-II, the core set of managed
  72.            objects for the Internet suite of protocols.
  73.  
  74.       o    RFC 1445 [3] which defines the administrative and other
  75.            architectural aspects of the framework.
  76.  
  77.       o    RFC 1448 [4] which defines the protocol used for network
  78.            access to managed objects.
  79.  
  80.    The Framework permits new objects to be defined for the purpose of
  81.    experimentation and evaluation.
  82.  
  83. 2.1.  Object Definitions
  84.  
  85.    Managed objects are accessed via a virtual information store, termed
  86.    the Management Information Base or MIB.  Objects in the MIB are
  87.    defined using the subset of Abstract Syntax Notation One (ASN.1)
  88.    defined in the SMI.  In particular, each object type is named by an
  89.    OBJECT IDENTIFIER, an administratively assigned name.  The object
  90.    type together with an object instance serves to uniquely identify a
  91.    specific instantiation of the object.  For human convenience, we
  92.    often use a textual string, termed the descriptor, to refer to the
  93.    object type.
  94.  
  95. 3.  Overview
  96.  
  97.    This memo defines three tables: the 802.5 Interface Table, which
  98.    contains state and parameter information which is specific to 802.5
  99.    interfaces, the 802.5 Statistics Table, which contains 802.5
  100.    interface statistics, and the 802.5 Timer Table, which contains the
  101.    values of 802.5-defined timers. A managed system will have one entry
  102.    in the 802.5 Interface Table and one entry in the 802.5 Statistics
  103.    Table for each of its 802.5 interfaces.  The 802.5 Timer Table is
  104.    obsolete, but its definition has been retained in this memo for
  105.    backward compatibility.
  106.  
  107.    This memo also defines OBJECT IDENTIFIERs, some to identify interface
  108.    tests for use with the ifTestTable [6], and some to identify Token
  109.    Ring interface Chip Sets.
  110.  
  111.  
  112.  
  113.  
  114. McCloghrie & Decker                                             [Page 2]
  115.  
  116. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  117.  
  118.  
  119. 3.1.  MAC Addresses
  120.  
  121.    All representations of MAC addresses in this MIB Module use the
  122.    MacAddress textual convention [5] for which the address is in the
  123.    "canonical" order defined by IEEE 802.1a, i.e., as if it were
  124.    transmitted least significant bit first, even though 802.5 requires
  125.    MAC addresses to be transmitted most significant bit first.
  126.  
  127.    16-bit addresses, if needed, are represented by setting their upper 4
  128.    octets to all zeros, i.e., AAFF would be represented as 00000000AAFF.
  129.  
  130. 3.2.  Relationship to RFC 1213
  131.  
  132.    When this MIB module is used in conjunction with the "old" (i.e.,
  133.    pre-RFC 1573) interfaces group, the relationship between an 802.5
  134.    interface and an interface in the context of the RFC 1213 is one-
  135.    to-one.  That is, the value of an ifIndex object instance for an
  136.    802.5 interface can be directly used to identify corresponding
  137.    instances of the objects defined in this memo.
  138.  
  139. 3.3.  Relationship to RFC 1573
  140.  
  141.    RFC 1573, the Interface MIB Evolution, requires that any MIB module
  142.    which is an adjunct of the Interface MIB, clarify specific areas
  143.    within the Interface MIB.  These areas were intentionally left vague
  144.    in RFC 1573 to avoid over constraining the MIB module, thereby
  145.    precluding management of certain media-types.
  146.  
  147.    Section 3.3 of RFC 1573 enumerates several areas which a media-
  148.    specific MIB module must clarify.  Each of these areas is addressed
  149.    in a following subsection.  The implementor is referred to RFC 1573
  150.    in order to understand the general intent of these areas.
  151.  
  152. 3.3.1.  Layering Model
  153.  
  154.    For the typical usage of this IEEE 802.5 MIB module, there will be no
  155.    sub-layers "above" or "below" the 802.5 interface.  However, this MIB
  156.    module does not preclude such layering.
  157.  
  158. 3.3.2.  Virtual Circuits
  159.  
  160.    802.5 does not support virtual circuits.
  161.  
  162. 3.3.3.  ifTestTable
  163.  
  164.    This MIB module defines two tests for 802.5 interfaces: Insertion and
  165.    Loopback.  Implementation of these tests is not required.
  166.  
  167.  
  168.  
  169.  
  170. McCloghrie & Decker                                             [Page 3]
  171.  
  172. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  173.  
  174.  
  175. 3.3.4.  ifRcvAddressTable
  176.  
  177.    The ifRcvAddressTable is defined to contains all MAC addresses,
  178.    unicast, multicast (group) and broadcast, for which an interface will
  179.    receive packets.  For 802.5 interfaces, its use includes functional
  180.    addresses. The format of the address, contained in
  181.    ifRcvAddressAddress, is the same as for ifPhysAddress.
  182.  
  183.    For functional addresses on a particular 802.5 interface, only one
  184.    ifRcvAddressTable entry is required.  That entry is the one for the
  185.    address which has the functional address bit ANDed with the bit mask
  186.    of all functional addresses for which the interface will accept
  187.    frames.
  188.  
  189. 3.3.5.  ifPhysAddress
  190.  
  191.    For an 802.5 interface, ifPhysAddress contains the interface's IEEE
  192.    MAC address, stored as an octet string of length 6, in IEEE 802.1a
  193.    "canonical" order, i.e., the Group Bit is positioned as the low-order
  194.    bit (0x01) of the first octet.
  195.  
  196. 3.3.6.  ifType
  197.  
  198.    The objects defined in this memo apply to each interface for which
  199.    the ifType has the value:
  200.  
  201.                   iso88025-tokenRing(9)
  202.  
  203. 4.  Definitions
  204.  
  205. TOKENRING-MIB DEFINITIONS ::= BEGIN
  206.  
  207. IMPORTS
  208.     MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY,
  209.     Counter32, Integer32                 FROM SNMPv2-SMI
  210.     transmission                         FROM RFC1213-MIB
  211.     MacAddress,TimeStamp                 FROM SNMPv2-TC
  212.     MODULE-COMPLIANCE, OBJECT-GROUP      FROM SNMPv2-CONF;
  213.  
  214. dot5 MODULE-IDENTITY
  215.     LAST-UPDATED "9410231150Z"
  216.     ORGANIZATION "IETF Interfaces MIB Working Group"
  217.     CONTACT-INFO
  218.             "        Keith McCloghrie
  219.  
  220.              Postal: cisco Systems, Inc.
  221.                      170 West Tasman Drive,
  222.                      San Jose, CA 95134-1706
  223.  
  224.  
  225.  
  226. McCloghrie & Decker                                             [Page 4]
  227.  
  228. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  229.  
  230.  
  231.                      US
  232.  
  233.               Phone: +1 408 526 5260
  234.               EMail: kzm@cisco.com"
  235.     DESCRIPTION
  236.         "The MIB module for IEEE Token Ring entities."
  237.     ::= { transmission 9 }
  238.  
  239.  
  240. --              The 802.5 Interface Table
  241.  
  242. -- This table contains state and parameter information which
  243. -- is specific to 802.5 interfaces.  It is mandatory that
  244. -- systems having 802.5 interfaces implement this table in
  245. -- addition to the ifTable (see RFCs 1213 and 1573).
  246.  
  247. dot5Table       OBJECT-TYPE
  248.     SYNTAX      SEQUENCE OF Dot5Entry
  249.     MAX-ACCESS  not-accessible
  250.     STATUS      current
  251.     DESCRIPTION
  252.             "This table contains Token Ring interface
  253.             parameters and state variables, one entry
  254.             per 802.5 interface."
  255.     ::= { dot5 1 }
  256.  
  257. dot5Entry       OBJECT-TYPE
  258.     SYNTAX      Dot5Entry
  259.     MAX-ACCESS  not-accessible
  260.     STATUS      current
  261.     DESCRIPTION
  262.             "A list of Token Ring status and parameter
  263.              values for an 802.5 interface."
  264.     INDEX       { dot5IfIndex }
  265.     ::= { dot5Table 1 }
  266.  
  267. Dot5Entry ::= SEQUENCE {
  268.      dot5IfIndex              Integer32,
  269.      dot5Commands             INTEGER,
  270.      dot5RingStatus           INTEGER,
  271.      dot5RingState            INTEGER,
  272.      dot5RingOpenStatus       INTEGER,
  273.      dot5RingSpeed            INTEGER,
  274.      dot5UpStream             MacAddress,
  275.      dot5ActMonParticipate    INTEGER,
  276.      dot5Functional           MacAddress,
  277.      dot5LastBeaconSent       TimeStamp
  278. }
  279.  
  280.  
  281.  
  282. McCloghrie & Decker                                             [Page 5]
  283.  
  284. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  285.  
  286.  
  287. dot5IfIndex     OBJECT-TYPE
  288.     SYNTAX      Integer32
  289.     MAX-ACCESS  read-only
  290.     STATUS      current
  291.     DESCRIPTION
  292.             "The value of this object identifies the
  293.              802.5 interface for which this entry
  294.              contains management information.  The
  295.              value of this object for a particular
  296.              interface has the same value as the
  297.              ifIndex object, defined in MIB-II for
  298.              the same interface."
  299.     ::= { dot5Entry 1 }
  300.  
  301. dot5Commands    OBJECT-TYPE
  302.     SYNTAX      INTEGER {
  303.                     noop(1),
  304.                     open(2),
  305.                     reset(3),
  306.                     close(4)
  307.                 }
  308.     MAX-ACCESS  read-write
  309.     STATUS      current
  310.     DESCRIPTION
  311.             "When this object is set to the value of
  312.              open(2), the station should go into the
  313.              open state.  The progress and success of
  314.              the open is given by the values of the
  315.              objects dot5RingState and
  316.              dot5RingOpenStatus.
  317.                  When this object is set to the value
  318.              of reset(3), then the station should do
  319.              a reset.  On a reset, all MIB counters
  320.              should retain their values, if possible.
  321.              Other side affects are dependent on the
  322.              hardware chip set.
  323.                  When this object is set to the value
  324.              of close(4), the station should go into
  325.              the stopped state by removing itself
  326.              from the ring.
  327.                  Setting this object to a value of
  328.              noop(1) has no effect.
  329.                  When read, this object always has a
  330.              value of noop(1).
  331.                  The open(2) and close(4) values
  332.              correspond to the up(1) and down(2) values
  333.              of MIB-II's ifAdminStatus and ifOperStatus,
  334.              i.e., the setting of ifAdminStatus and
  335.  
  336.  
  337.  
  338. McCloghrie & Decker                                             [Page 6]
  339.  
  340. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  341.  
  342.  
  343.              dot5Commands affects the values of both
  344.              dot5Commands and ifOperStatus."
  345.     ::= { dot5Entry 2 }
  346.  
  347. dot5RingStatus  OBJECT-TYPE
  348.     SYNTAX      INTEGER (0..262143)
  349.     MAX-ACCESS  read-only
  350.     STATUS      current
  351.     DESCRIPTION
  352.             "The current interface status which can
  353.             be used to diagnose fluctuating problems
  354.             that can occur on token rings, after a
  355.             station has successfully been added to
  356.             the ring.
  357.                Before an open is completed, this
  358.             object has the value for the 'no status'
  359.             condition.  The dot5RingState and
  360.             dot5RingOpenStatus objects provide for
  361.             debugging problems when the station
  362.             can not even enter the ring.
  363.                 The object's value is a sum of
  364.             values, one for each currently applicable
  365.             condition.  The following values are
  366.             defined for various conditions:
  367.  
  368.                     0 = No Problems detected
  369.                    32 = Ring Recovery
  370.                    64 = Single Station
  371.                   256 = Remove Received
  372.                   512 = reserved
  373.                  1024 = Auto-Removal Error
  374.                  2048 = Lobe Wire Fault
  375.                  4096 = Transmit Beacon
  376.                  8192 = Soft Error
  377.                 16384 = Hard Error
  378.                 32768 = Signal Loss
  379.                131072 = no status, open not completed."
  380.     ::= { dot5Entry 3 }
  381.  
  382. dot5RingState   OBJECT-TYPE
  383.     SYNTAX      INTEGER {
  384.                     opened(1),
  385.                     closed(2),
  386.                     opening(3),
  387.                     closing(4),
  388.                     openFailure(5),
  389.                     ringFailure(6)
  390.                 }
  391.  
  392.  
  393.  
  394. McCloghrie & Decker                                             [Page 7]
  395.  
  396. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  397.  
  398.  
  399.     MAX-ACCESS  read-only
  400.     STATUS      current
  401.     DESCRIPTION
  402.             "The current interface state with respect
  403.             to entering or leaving the ring."
  404.     ::= { dot5Entry 4 }
  405.  
  406. dot5RingOpenStatus  OBJECT-TYPE
  407.     SYNTAX      INTEGER {
  408.                     noOpen(1),     -- no open attempted
  409.                     badParam(2),
  410.                     lobeFailed(3),
  411.                     signalLoss(4),
  412.                     insertionTimeout(5),
  413.                     ringFailed(6),
  414.                     beaconing(7),
  415.                     duplicateMAC(8),
  416.                     requestFailed(9),
  417.                     removeReceived(10),
  418.                     open(11)      -- last open successful
  419.                 }
  420.     MAX-ACCESS  read-only
  421.     STATUS      current
  422.     DESCRIPTION
  423.             "This object indicates the success, or the
  424.             reason for failure, of the station's most
  425.             recent attempt to enter the ring."
  426.     ::= { dot5Entry 5 }
  427.  
  428. dot5RingSpeed   OBJECT-TYPE
  429.     SYNTAX      INTEGER {
  430.                     unknown(1),
  431.                     oneMegabit(2),
  432.                     fourMegabit(3),
  433.                     sixteenMegabit(4)
  434.                 }
  435.     MAX-ACCESS  read-write
  436.     STATUS      current
  437.     DESCRIPTION
  438.             "The ring-speed at the next insertion into
  439.             the ring.  Note that this may or may not be
  440.             different to the current ring-speed which is
  441.             given by MIB-II's ifSpeed.  For interfaces
  442.             which do not support changing ring-speed,
  443.             dot5RingSpeed can only be set to its current
  444.             value.  When dot5RingSpeed has the value
  445.             unknown(1), the ring's actual ring-speed is
  446.             to be used."
  447.  
  448.  
  449.  
  450. McCloghrie & Decker                                             [Page 8]
  451.  
  452. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  453.  
  454.  
  455.     ::= { dot5Entry 6 }
  456.  
  457. dot5UpStream    OBJECT-TYPE
  458.     SYNTAX      MacAddress
  459.     MAX-ACCESS  read-only
  460.     STATUS      current
  461.     DESCRIPTION
  462.             "The MAC-address of the up stream neighbor
  463.              station in the ring."
  464.     ::= { dot5Entry 7 }
  465.  
  466. dot5ActMonParticipate OBJECT-TYPE
  467.     SYNTAX      INTEGER {
  468.                     true(1),
  469.                     false(2)
  470.                 }
  471.     MAX-ACCESS  read-write
  472.     STATUS      current
  473.     DESCRIPTION
  474.             "If this object has a value of true(1) then
  475.             this interface will participate in the
  476.             active monitor selection process.  If the
  477.             value is false(2) then it will not.
  478.             Setting this object does not take effect
  479.             until the next Active Monitor election, and
  480.             might not take effect until the next time
  481.             the interface is opened."
  482.     ::= { dot5Entry 8 }
  483.  
  484. dot5Functional  OBJECT-TYPE
  485.     SYNTAX      MacAddress
  486.     MAX-ACCESS  read-write
  487.     STATUS      current
  488.     DESCRIPTION
  489.             "The bit mask of all Token Ring functional
  490.             addresses for which this interface will
  491.             accept frames."
  492.     ::= { dot5Entry 9 }
  493.  
  494. dot5LastBeaconSent OBJECT-TYPE
  495.     SYNTAX      TimeStamp
  496.     MAX-ACCESS  read-only
  497.     STATUS      current
  498.     DESCRIPTION
  499.             "The value of MIB-II's sysUpTime object at which
  500.             the local system last transmitted a Beacon frame
  501.             on this interface."
  502.     ::= { dot5Entry 10 }
  503.  
  504.  
  505.  
  506. McCloghrie & Decker                                             [Page 9]
  507.  
  508. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  509.  
  510.  
  511. --   The 802.5 Statistics Table
  512.  
  513. -- This table contains statistics and error counter which are
  514. -- specific to 802.5 interfaces.  It is mandatory that systems
  515. -- having 802.5 interfaces implement this table.
  516.  
  517. dot5StatsTable  OBJECT-TYPE
  518.     SYNTAX      SEQUENCE OF Dot5StatsEntry
  519.     MAX-ACCESS  not-accessible
  520.     STATUS      current
  521.     DESCRIPTION
  522.             "A table containing Token Ring statistics,
  523.             one entry per 802.5 interface.
  524.                 All the statistics are defined using
  525.             the syntax Counter32 as 32-bit wrap around
  526.             counters.  Thus, if an interface's
  527.             hardware maintains these statistics in
  528.             16-bit counters, then the agent must read
  529.             the hardware's counters frequently enough
  530.             to prevent loss of significance, in order
  531.             to maintain 32-bit counters in software."
  532.     ::= { dot5 2 }
  533.  
  534. dot5StatsEntry  OBJECT-TYPE
  535.     SYNTAX      Dot5StatsEntry
  536.     MAX-ACCESS  not-accessible
  537.     STATUS      current
  538.     DESCRIPTION
  539.             "An entry contains the 802.5 statistics
  540.              for a particular interface."
  541.     INDEX       { dot5StatsIfIndex }
  542.     ::= { dot5StatsTable 1 }
  543.  
  544.  
  545. Dot5StatsEntry ::= SEQUENCE {
  546.      dot5StatsIfIndex              Integer32,
  547.      dot5StatsLineErrors           Counter32,
  548.      dot5StatsBurstErrors          Counter32,
  549.      dot5StatsACErrors             Counter32,
  550.      dot5StatsAbortTransErrors     Counter32,
  551.      dot5StatsInternalErrors       Counter32,
  552.      dot5StatsLostFrameErrors      Counter32,
  553.      dot5StatsReceiveCongestions   Counter32,
  554.      dot5StatsFrameCopiedErrors    Counter32,
  555.      dot5StatsTokenErrors          Counter32,
  556.      dot5StatsSoftErrors           Counter32,
  557.      dot5StatsHardErrors           Counter32,
  558.      dot5StatsSignalLoss           Counter32,
  559.  
  560.  
  561.  
  562. McCloghrie & Decker                                            [Page 10]
  563.  
  564. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  565.  
  566.  
  567.      dot5StatsTransmitBeacons      Counter32,
  568.      dot5StatsRecoverys            Counter32,
  569.      dot5StatsLobeWires            Counter32,
  570.      dot5StatsRemoves              Counter32,
  571.      dot5StatsSingles              Counter32,
  572.      dot5StatsFreqErrors           Counter32
  573. }
  574.  
  575.  
  576. dot5StatsIfIndex  OBJECT-TYPE
  577.     SYNTAX      Integer32
  578.     MAX-ACCESS  read-only
  579.     STATUS      current
  580.     DESCRIPTION
  581.             "The value of this object identifies the
  582.             802.5 interface for which this entry
  583.             contains management information.  The
  584.             value of this object for a particular
  585.             interface has the same value as MIB-II's
  586.             ifIndex object for the same interface."
  587.     ::= { dot5StatsEntry 1 }
  588.  
  589. dot5StatsLineErrors OBJECT-TYPE
  590.     SYNTAX      Counter32
  591.     MAX-ACCESS  read-only
  592.     STATUS      current
  593.     DESCRIPTION
  594.             "This counter is incremented when a frame
  595.             or token is copied or repeated by a
  596.             station, the E bit is zero in the frame
  597.             or token and one of the following
  598.             conditions exists: 1) there is a
  599.             non-data bit (J or K bit) between the SD
  600.             and the ED of the frame or token, or
  601.             2) there is an FCS error in the frame."
  602.     ::= { dot5StatsEntry 2 }
  603.  
  604. dot5StatsBurstErrors OBJECT-TYPE
  605.     SYNTAX      Counter32
  606.     MAX-ACCESS  read-only
  607.     STATUS      current
  608.     DESCRIPTION
  609.             "This counter is incremented when a station
  610.             detects the absence of transitions for five
  611.             half-bit timers (burst-five error)."
  612.     ::= { dot5StatsEntry 3 }
  613.  
  614.  
  615.  
  616.  
  617.  
  618. McCloghrie & Decker                                            [Page 11]
  619.  
  620. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  621.  
  622.  
  623. dot5StatsACErrors OBJECT-TYPE
  624.     SYNTAX      Counter32
  625.     MAX-ACCESS  read-only
  626.     STATUS      current
  627.     DESCRIPTION
  628.             "This counter is incremented when a station
  629.             receives an AMP or SMP frame in which A is
  630.             equal to C is equal to 0, and then receives
  631.             another SMP frame with A is equal to C is
  632.             equal to 0 without first receiving an AMP
  633.             frame. It denotes a station that cannot set
  634.             the AC bits properly."
  635.     ::= { dot5StatsEntry 4 }
  636.  
  637. dot5StatsAbortTransErrors OBJECT-TYPE
  638.     SYNTAX      Counter32
  639.     MAX-ACCESS  read-only
  640.     STATUS      current
  641.     DESCRIPTION
  642.             "This counter is incremented when a station
  643.             transmits an abort delimiter while
  644.             transmitting."
  645.     ::= { dot5StatsEntry 5 }
  646.  
  647. dot5StatsInternalErrors OBJECT-TYPE
  648.     SYNTAX      Counter32
  649.     MAX-ACCESS  read-only
  650.     STATUS      current
  651.     DESCRIPTION
  652.             "This counter is incremented when a station
  653.             recognizes an internal error."
  654.     ::= { dot5StatsEntry 6 }
  655.  
  656. dot5StatsLostFrameErrors OBJECT-TYPE
  657.     SYNTAX      Counter32
  658.     MAX-ACCESS  read-only
  659.     STATUS      current
  660.     DESCRIPTION
  661.             "This counter is incremented when a station
  662.             is transmitting and its TRR timer expires.
  663.             This condition denotes a condition where a
  664.             transmitting station in strip mode does not
  665.             receive the trailer of the frame before the
  666.             TRR timer goes off."
  667.     ::= { dot5StatsEntry 7 }
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674. McCloghrie & Decker                                            [Page 12]
  675.  
  676. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  677.  
  678.  
  679. dot5StatsReceiveCongestions OBJECT-TYPE
  680.     SYNTAX      Counter32
  681.     MAX-ACCESS  read-only
  682.     STATUS      current
  683.     DESCRIPTION
  684.             "This counter is incremented when a station
  685.             recognizes a frame addressed to its
  686.             specific address, but has no available
  687.             buffer space indicating that the station
  688.             is congested."
  689.     ::= { dot5StatsEntry 8 }
  690.  
  691. dot5StatsFrameCopiedErrors OBJECT-TYPE
  692.     SYNTAX      Counter32
  693.     MAX-ACCESS  read-only
  694.     STATUS      current
  695.     DESCRIPTION
  696.             "This counter is incremented when a station
  697.             recognizes a frame addressed to its
  698.             specific address and detects that the FS
  699.             field A bits are set to 1 indicating a
  700.             possible line hit or duplicate address."
  701.     ::= { dot5StatsEntry 9 }
  702.  
  703. dot5StatsTokenErrors OBJECT-TYPE
  704.     SYNTAX      Counter32
  705.     MAX-ACCESS  read-only
  706.     STATUS      current
  707.     DESCRIPTION
  708.             "This counter is incremented when a station
  709.             acting as the active monitor recognizes an
  710.             error condition that needs a token
  711.             transmitted."
  712.     ::= { dot5StatsEntry 10 }
  713.  
  714. dot5StatsSoftErrors OBJECT-TYPE
  715.     SYNTAX      Counter32
  716.     MAX-ACCESS  read-only
  717.     STATUS      current
  718.     DESCRIPTION
  719.             "The number of Soft Errors the interface
  720.             has detected. It directly corresponds to
  721.             the number of Report Error MAC frames
  722.             that this interface has transmitted.
  723.             Soft Errors are those which are
  724.             recoverable by the MAC layer protocols."
  725.     ::= { dot5StatsEntry 11 }
  726.  
  727.  
  728.  
  729.  
  730. McCloghrie & Decker                                            [Page 13]
  731.  
  732. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  733.  
  734.  
  735. dot5StatsHardErrors OBJECT-TYPE
  736.     SYNTAX      Counter32
  737.     MAX-ACCESS  read-only
  738.     STATUS      current
  739.     DESCRIPTION
  740.             "The number of times this interface has
  741.             detected an immediately recoverable
  742.             fatal error.  It denotes the number of
  743.             times this interface is either
  744.             transmitting or receiving beacon MAC
  745.             frames."
  746.     ::= { dot5StatsEntry 12 }
  747.  
  748. dot5StatsSignalLoss OBJECT-TYPE
  749.     SYNTAX      Counter32
  750.     MAX-ACCESS  read-only
  751.     STATUS      current
  752.     DESCRIPTION
  753.             "The number of times this interface has
  754.             detected the loss of signal condition from
  755.             the ring."
  756.     ::= { dot5StatsEntry 13 }
  757.  
  758. dot5StatsTransmitBeacons OBJECT-TYPE
  759.     SYNTAX      Counter32
  760.     MAX-ACCESS  read-only
  761.     STATUS      current
  762.     DESCRIPTION
  763.             "The number of times this interface has
  764.             transmitted a beacon frame."
  765.     ::= { dot5StatsEntry 14 }
  766.  
  767. dot5StatsRecoverys OBJECT-TYPE
  768.     SYNTAX      Counter32
  769.     MAX-ACCESS  read-only
  770.     STATUS      current
  771.     DESCRIPTION
  772.             "The number of Claim Token MAC frames
  773.             received or transmitted after the interface
  774.             has received a Ring Purge MAC frame.  This
  775.             counter signifies the number of times the
  776.             ring has been purged and is being recovered
  777.             back into a normal operating state."
  778.     ::= { dot5StatsEntry 15 }
  779.  
  780. dot5StatsLobeWires OBJECT-TYPE
  781.     SYNTAX      Counter32
  782.     MAX-ACCESS  read-only
  783.  
  784.  
  785.  
  786. McCloghrie & Decker                                            [Page 14]
  787.  
  788. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  789.  
  790.  
  791.     STATUS      current
  792.     DESCRIPTION
  793.             "The number of times the interface has
  794.             detected an open or short circuit in the
  795.             lobe data path.  The adapter will be closed
  796.             and dot5RingState will signify this
  797.             condition."
  798.     ::= { dot5StatsEntry 16 }
  799.  
  800. dot5StatsRemoves OBJECT-TYPE
  801.     SYNTAX      Counter32
  802.     MAX-ACCESS  read-only
  803.     STATUS      current
  804.     DESCRIPTION
  805.             "The number of times the interface has
  806.             received a Remove Ring Station MAC frame
  807.             request.  When this frame is received
  808.             the interface will enter the close state
  809.             and dot5RingState will signify this
  810.             condition."
  811.     ::= { dot5StatsEntry 17 }
  812.  
  813. dot5StatsSingles OBJECT-TYPE
  814.     SYNTAX      Counter32
  815.     MAX-ACCESS  read-only
  816.     STATUS      current
  817.     DESCRIPTION
  818.             "The number of times the interface has
  819.             sensed that it is the only station on the
  820.             ring.  This will happen if the interface
  821.             is the first one up on a ring, or if
  822.             there is a hardware problem."
  823.     ::= { dot5StatsEntry 18 }
  824.  
  825. dot5StatsFreqErrors OBJECT-TYPE
  826.     SYNTAX      Counter32
  827.     MAX-ACCESS  read-only
  828.     STATUS      current
  829.     DESCRIPTION
  830.             "The number of times the interface has
  831.             detected that the frequency of the
  832.             incoming signal differs from the expected
  833.             frequency by more than that specified by
  834.             the IEEE 802.5 standard."
  835.     ::= { dot5StatsEntry 19 }
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842. McCloghrie & Decker                                            [Page 15]
  843.  
  844. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  845.  
  846.  
  847. -- The Timer Table
  848.  
  849. -- This group contains the values of timers for 802.5
  850. -- interfaces.  This table is obsolete, but its definition
  851. -- is retained here for backwards compatibility.
  852.  
  853. dot5TimerTable  OBJECT-TYPE
  854.     SYNTAX      SEQUENCE OF Dot5TimerEntry
  855.     MAX-ACCESS  not-accessible
  856.     STATUS      obsolete
  857.     DESCRIPTION
  858.             "This table contains Token Ring interface
  859.             timer values, one entry per 802.5
  860.             interface."
  861.     ::= { dot5 5 }
  862.  
  863. dot5TimerEntry  OBJECT-TYPE
  864.     SYNTAX      Dot5TimerEntry
  865.     MAX-ACCESS  not-accessible
  866.     STATUS      obsolete
  867.     DESCRIPTION
  868.             "A list of Token Ring timer values for an
  869.             802.5 interface."
  870.     INDEX       { dot5TimerIfIndex }
  871.     ::= { dot5TimerTable 1 }
  872.  
  873. Dot5TimerEntry ::= SEQUENCE {
  874.     dot5TimerIfIndex          Integer32,
  875.     dot5TimerReturnRepeat     Integer32,
  876.     dot5TimerHolding          Integer32,
  877.     dot5TimerQueuePDU         Integer32,
  878.     dot5TimerValidTransmit    Integer32,
  879.     dot5TimerNoToken          Integer32,
  880.     dot5TimerActiveMon        Integer32,
  881.     dot5TimerStandbyMon       Integer32,
  882.     dot5TimerErrorReport      Integer32,
  883.     dot5TimerBeaconTransmit   Integer32,
  884.     dot5TimerBeaconReceive    Integer32
  885. }
  886.  
  887. dot5TimerIfIndex  OBJECT-TYPE
  888.     SYNTAX      Integer32
  889.     MAX-ACCESS  read-only
  890.     STATUS      obsolete
  891.     DESCRIPTION
  892.             "The value of this object identifies the
  893.              802.5 interface for which this entry
  894.              contains timer values.  The value of
  895.  
  896.  
  897.  
  898. McCloghrie & Decker                                            [Page 16]
  899.  
  900. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  901.  
  902.  
  903.              this object for a particular interface
  904.              has the same value as MIB-II's ifIndex
  905.              object for the same interface."
  906.     ::= { dot5TimerEntry 1 }
  907.  
  908. dot5TimerReturnRepeat  OBJECT-TYPE
  909.     SYNTAX      Integer32
  910.     MAX-ACCESS  read-only
  911.     STATUS      obsolete
  912.     DESCRIPTION
  913.             "The time-out value used to ensure the
  914.             interface will return to Repeat State, in
  915.             units of 100 micro-seconds.  The value
  916.             should be greater than the maximum ring
  917.             latency."
  918.     ::= { dot5TimerEntry 2 }
  919.  
  920. dot5TimerHolding  OBJECT-TYPE
  921.     SYNTAX      Integer32
  922.     MAX-ACCESS  read-only
  923.     STATUS      obsolete
  924.     DESCRIPTION
  925.             "Maximum period of time a station is
  926.             permitted to transmit frames after capturing
  927.             a token, in units of 100 micro-seconds."
  928.     ::= { dot5TimerEntry 3 }
  929.  
  930. dot5TimerQueuePDU  OBJECT-TYPE
  931.     SYNTAX      Integer32
  932.     MAX-ACCESS  read-only
  933.     STATUS      obsolete
  934.     DESCRIPTION
  935.             "The time-out value for enqueuing of an SMP
  936.             PDU after reception of an AMP or SMP
  937.             frame in which the A and C bits were
  938.             equal to 0, in units of 100
  939.             micro-seconds."
  940.     ::= { dot5TimerEntry 4 }
  941.  
  942. dot5TimerValidTransmit OBJECT-TYPE
  943.     SYNTAX      Integer32
  944.     MAX-ACCESS  read-only
  945.     STATUS      obsolete
  946.     DESCRIPTION
  947.             "The time-out value used by the active
  948.             monitor to detect the absence of valid
  949.             transmissions, in units of 100
  950.             micro-seconds."
  951.  
  952.  
  953.  
  954. McCloghrie & Decker                                            [Page 17]
  955.  
  956. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  957.  
  958.  
  959.     ::= { dot5TimerEntry 5 }
  960.  
  961. dot5TimerNoToken  OBJECT-TYPE
  962.     SYNTAX      Integer32
  963.     MAX-ACCESS  read-only
  964.     STATUS      obsolete
  965.     DESCRIPTION
  966.             "The time-out value used to recover from
  967.             various-related error situations.
  968.             If N is the maximum number of stations on
  969.             the ring, the value of this timer is
  970.             normally:
  971.             dot5TimerReturnRepeat + N*dot5TimerHolding."
  972.     ::= { dot5TimerEntry 6 }
  973.  
  974. dot5TimerActiveMon  OBJECT-TYPE
  975.     SYNTAX      Integer32
  976.     MAX-ACCESS  read-only
  977.     STATUS      obsolete
  978.     DESCRIPTION
  979.             "The time-out value used by the active
  980.             monitor to stimulate the enqueuing of an
  981.             AMP PDU for transmission, in units of
  982.             100 micro-seconds."
  983.     ::= { dot5TimerEntry 7 }
  984.  
  985. dot5TimerStandbyMon  OBJECT-TYPE
  986.     SYNTAX      Integer32
  987.     MAX-ACCESS  read-only
  988.     STATUS      obsolete
  989.     DESCRIPTION
  990.             "The time-out value used by the stand-by
  991.             monitors to ensure that there is an active
  992.             monitor on the ring and to detect a
  993.             continuous stream of tokens, in units of
  994.             100 micro-seconds."
  995.     ::= { dot5TimerEntry 8 }
  996.  
  997. dot5TimerErrorReport  OBJECT-TYPE
  998.     SYNTAX      Integer32
  999.     MAX-ACCESS  read-only
  1000.     STATUS      obsolete
  1001.     DESCRIPTION
  1002.             "The time-out value which determines how
  1003.             often a station shall send a Report Error
  1004.             MAC frame to report its error counters,
  1005.             in units of 100 micro-seconds."
  1006.     ::= { dot5TimerEntry 9 }
  1007.  
  1008.  
  1009.  
  1010. McCloghrie & Decker                                            [Page 18]
  1011.  
  1012. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1013.  
  1014.  
  1015. dot5TimerBeaconTransmit  OBJECT-TYPE
  1016.     SYNTAX      Integer32
  1017.     MAX-ACCESS  read-only
  1018.     STATUS      obsolete
  1019.     DESCRIPTION
  1020.             "The time-out value which determines how
  1021.             long a station shall remain in the state
  1022.             of transmitting Beacon frames before
  1023.             entering the Bypass state, in units of
  1024.             100 micro-seconds."
  1025.     ::= { dot5TimerEntry 10 }
  1026.  
  1027. dot5TimerBeaconReceive  OBJECT-TYPE
  1028.     SYNTAX      Integer32
  1029.     MAX-ACCESS  read-only
  1030.     STATUS      obsolete
  1031.     DESCRIPTION
  1032.             "The time-out value which determines how
  1033.             long a station shall receive Beacon
  1034.             frames from its downstream neighbor
  1035.             before entering the Bypass state, in
  1036.             units of 100 micro-seconds."
  1037.     ::= { dot5TimerEntry 11 }
  1038.  
  1039.  
  1040. --                802.5 Interface Tests
  1041.  
  1042. dot5Tests   OBJECT IDENTIFIER ::= { dot5 3 }
  1043.  
  1044. -- RFC 1573 defines the ifTestTable, through which a
  1045. -- network manager can instruct an agent to test an interface
  1046. -- for various faults.  A test to be performed is identified
  1047. -- as an OBJECT IDENTIFIER.
  1048.  
  1049. -- The Insert Function test
  1050.  
  1051. dot5TestInsertFunc  OBJECT-IDENTITY
  1052.     STATUS       current
  1053.     DESCRIPTION
  1054.         "Invoking this test causes the station to test the insert
  1055.         ring logic of the hardware if the station's lobe media
  1056.         cable is connected to a wiring concentrator.  Note that
  1057.         this command inserts the station into the network, and
  1058.         thus, could cause problems if the station is connected
  1059.         to a operational network."
  1060.     ::= { dot5Tests 1 }
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066. McCloghrie & Decker                                            [Page 19]
  1067.  
  1068. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1069.  
  1070.  
  1071. -- The Full-Duplex Loop Back test
  1072.  
  1073. dot5TestFullDuplexLoopBack OBJECT-IDENTITY
  1074.     STATUS       current
  1075.     DESCRIPTION
  1076.         "Invoking this test on a 802.5 interface causes the
  1077.         interface to check the path from memory through the
  1078.         chip set's internal logic and back to memory, thus
  1079.         checking the proper functioning of the system's
  1080.         interface to the chip set."
  1081.     ::= { dot5Tests 2 }
  1082.  
  1083.  
  1084. --              802.5 Hardware Chip Sets
  1085.  
  1086. -- RFC 1229 specified an object, ifExtnsChipSet, with the
  1087. -- syntax of OBJECT IDENTIFIER, to identify the hardware
  1088. -- chip set in use by an interface.  RFC 1573 obsoletes
  1089. -- the use of ifExtnsChipSet.  However, the following
  1090. -- definitions are retained for backwards compatibility.
  1091.  
  1092. dot5ChipSets   OBJECT IDENTIFIER ::= { dot5 4 }
  1093.  
  1094. dot5ChipSetIBM16  OBJECT-IDENTITY
  1095.     STATUS        current
  1096.     DESCRIPTION
  1097.         "IBM's 16/4 Mbs chip set."
  1098.     ::= { dot5ChipSets 1 }
  1099.  
  1100. dot5ChipSetTItms380 OBJECT-IDENTITY
  1101.     STATUS        current
  1102.     DESCRIPTION
  1103.         "Texas Instruments' TMS 380 4Mbs chip-set"
  1104.     ::= { dot5ChipSets 2 }
  1105.  
  1106. dot5ChipSetTItms380c16 OBJECT-IDENTITY
  1107.     STATUS        current
  1108.     DESCRIPTION
  1109.         "Texas Instruments' TMS 380C16 16/4 Mbs chip-set"
  1110.     ::= { dot5ChipSets 3 }
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121.  
  1122. McCloghrie & Decker                                            [Page 20]
  1123.  
  1124. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1125.  
  1126.  
  1127. -- conformance information
  1128.  
  1129. dot5Conformance OBJECT IDENTIFIER ::= { dot5 5 }
  1130.  
  1131. dot5Groups      OBJECT IDENTIFIER ::= { dot5Conformance 1 }
  1132. dot5Compliances OBJECT IDENTIFIER ::= { dot5Conformance 2 }
  1133.  
  1134.  
  1135. -- compliance statements
  1136.  
  1137. dot5Compliance MODULE-COMPLIANCE
  1138.     STATUS  current
  1139.     DESCRIPTION
  1140.         "The compliance statement for SNMPv2 entities
  1141.         which implement the IEEE 802.5 MIB."
  1142.  
  1143.     MODULE  -- this module
  1144.         MANDATORY-GROUPS { dot5StateGroup, dot5StatsGroup }
  1145.  
  1146.         OBJECT     dot5ActMonParticipate
  1147.         MIN-ACCESS read-only
  1148.         DESCRIPTION
  1149.             "Write access is not required."
  1150.  
  1151.         OBJECT     dot5Functional
  1152.         MIN-ACCESS read-only
  1153.         DESCRIPTION
  1154.             "Write access is not required."
  1155.  
  1156.     ::= { dot5Compliances 1 }
  1157.  
  1158.  
  1159. -- units of conformance
  1160.  
  1161. dot5StateGroup  OBJECT-GROUP
  1162.     OBJECTS   { dot5Commands, dot5RingStatus, dot5RingState,
  1163.                 dot5RingOpenStatus, dot5RingSpeed, dot5UpStream,
  1164.                 dot5ActMonParticipate, dot5Functional,
  1165.                 dot5LastBeaconSent
  1166.               }
  1167.     STATUS    current
  1168.     DESCRIPTION
  1169.         "A collection of objects providing state information
  1170.         and parameters for IEEE 802.5 interfaces."
  1171.     ::= { dot5Groups 1 }
  1172.  
  1173. dot5StatsGroup  OBJECT-GROUP
  1174.     OBJECTS   { dot5StatsLineErrors, dot5StatsBurstErrors,
  1175.  
  1176.  
  1177.  
  1178. McCloghrie & Decker                                            [Page 21]
  1179.  
  1180. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1181.  
  1182.  
  1183.                 dot5StatsACErrors, dot5StatsAbortTransErrors,
  1184.                 dot5StatsInternalErrors, dot5StatsLostFrameErrors,
  1185.                 dot5StatsReceiveCongestions,
  1186.                 dot5StatsFrameCopiedErrors, dot5StatsTokenErrors,
  1187.                 dot5StatsSoftErrors, dot5StatsHardErrors,
  1188.                 dot5StatsSignalLoss, dot5StatsTransmitBeacons,
  1189.                 dot5StatsRecoverys, dot5StatsLobeWires,
  1190.                 dot5StatsRemoves, dot5StatsSingles,
  1191.                 dot5StatsFreqErrors
  1192.               }
  1193.     STATUS    current
  1194.     DESCRIPTION
  1195.         "A collection of objects providing statistics for
  1196.         IEEE 802.5 interfaces."
  1197.     ::= { dot5Groups 2 }
  1198.  
  1199. END
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234. McCloghrie & Decker                                            [Page 22]
  1235.  
  1236. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1237.  
  1238.  
  1239. 5.  Acknowledgements
  1240.  
  1241.    The changes from RFC 1231 are the result of discussions on the IETF's
  1242.    snmp mailing-list and in the Interfaces MIB Working Group.
  1243.  
  1244. 6.  References
  1245.  
  1246.    [1] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser, "Structure
  1247.        of Management Information for version 2 of the Simple Network
  1248.        Management Protocol (SNMPv2)", RFC 1442, SNMP Research,Inc.,
  1249.        Hughes LAN Systems, Dover Beach Consulting, Inc., Carnegie Mellon
  1250.        University, April 1993.
  1251.  
  1252.    [2] McCloghrie, K., and M. Rose, Editors, "Management Information
  1253.        Base for Network Management of TCP/IP-based internets: MIB-II",
  1254.        STD 17, RFC 1213, Hughes LAN Systems, Performance Systems
  1255.        International, March 1991.
  1256.  
  1257.    [3] Galvin, J., and K. McCloghrie, "Administrative Model for version
  1258.        2 of the Simple Network Management Protocol (SNMPv2)", RFC 1445,
  1259.        Trusted Information Systems, Hughes LAN Systems, April 1993.
  1260.  
  1261.    [4] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser, "Protocol
  1262.        Operations for version 2 of the Simple Network Management
  1263.        Protocol (SNMPv2)", RFC 1448, SNMP Research,Inc., Hughes LAN
  1264.        Systems, Dover Beach Consulting, Inc., Carnegie Mellon
  1265.        University, April 1993.
  1266.  
  1267.    [5] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser, "Textual
  1268.        Conventions for version 2 of the Simple Network Management
  1269.        Protocol (SNMPv2)", RFC 1443, SNMP Research,Inc., Hughes LAN
  1270.        Systems, Dover Beach Consulting, Inc., Carnegie Mellon
  1271.        University, April 1993.
  1272.  
  1273.    [6] McCloghrie, K., and F. Kastenholz, "Evolution of the Interfaces
  1274.        Group of MIB-II", RFC 1573, Hughes LAN Systems, FTP Software, Jan
  1275.        1994
  1276.  
  1277.    [7] Institute of Electrical and Electronic Engineers, "Token Ring
  1278.        Access Method and Physical Layer Specifications", IEEE Standard
  1279.        802.5-1989, 1989.
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285.  
  1286.  
  1287.  
  1288.  
  1289.  
  1290. McCloghrie & Decker                                            [Page 23]
  1291.  
  1292. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1293.  
  1294.  
  1295. APPENDIX A - Changes from RFC 1231
  1296.  
  1297.    This memo has the following differences from RFC 1231:
  1298.  
  1299.    (1)  This memo is formatted using the SNMPv2 SMI.
  1300.  
  1301.    (2)  The relationship of the "open" and "close" states of
  1302.         dot5Commands to the value of ifAdminStatus has been
  1303.         clarified.  In particular, the setting of one affects the
  1304.         value of the other.
  1305.  
  1306.    (3)  The relationship dot5RingSpeed and ifSpeed has been
  1307.         clarified.  In particular, ifSpeed indicates the current
  1308.         ring-speed; dot5RingSpeed indicates the ring-speed at the
  1309.         next insertion into the ring.  If the interface doesn't
  1310.         support changing ring-speed, then dot5RingSpeed can only be
  1311.         set to its current value.  When dot5RingSpeed has the value
  1312.         'unknown(1)', the ring-speed is to be set to the ring's
  1313.         actual ring-speed.
  1314.  
  1315.    (4)  Write-access to dot5ActMonParticipate is not required, and a
  1316.         change to the value of dot5ActMonParticipate does not take
  1317.         effect until the next Active Monitor election.
  1318.  
  1319.    (5)  Write-access to dot5Functional is not required.
  1320.  
  1321.    (6)  A new object, dot5LastBeaconSent has been defined to contain
  1322.         the timestamp of the last beacon frame sent.
  1323.  
  1324.    (7)  The dot5TimerTable has been designated as obsolete.
  1325.  
  1326.    (8)  Text has been added describing the applicability of RFC 1573
  1327.         [6] to 802.5 interfaces.
  1328.  
  1329.    (9)  Other minor editorial changes.
  1330.  
  1331. Security Considerations
  1332.  
  1333.    Security issues are not discussed in this memo.
  1334.  
  1335.  
  1336.  
  1337.  
  1338.  
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344.  
  1345.  
  1346. McCloghrie & Decker                                            [Page 24]
  1347.  
  1348. RFC 1743               IEEE 802.5 MIB using SMIv2          December 1994
  1349.  
  1350.  
  1351. Authors' Addresses
  1352.  
  1353.    Keith McCloghrie
  1354.    cisco Systems, Inc.
  1355.    170 West Tasman Drive,
  1356.    San Jose, CA 95134-1706
  1357.  
  1358.    Phone: (408) 526-5260
  1359.    EMail: kzm@cisco.com
  1360.  
  1361.  
  1362.    Eric B. Decker
  1363.    cisco Systems, Inc.
  1364.    1525 O'Brien Dr.
  1365.    Menlo Park, CA 94025
  1366.  
  1367.    Phone: (415) 688-8241
  1368.    EMail: cire@cisco.com
  1369.  
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399.  
  1400.  
  1401.  
  1402. McCloghrie & Decker                                            [Page 25]
  1403.  
  1404.